home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Volkswriter Editor Pop-up Menu Configuration
- ;
- Comment ("Configured for Volkswriter")
-
- ;
- ; Parameters
- ;
- Sensitivity (8, 10) ; (Xinc, Yinc)
- Hysteresis (1, 1) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- FixedMenu (No) ; Menu is floating (centered on cursor)
- EnableBeep (No) ; Allows menu switching rather than beep
-
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LB: Button (Menu(Edit)) ; Left button, Edit Menu
- MB: Button (Menu(Motion)) ; Middle button, Motion Menu
- RB: Button (Menu(File)) ; Right button, File Menu
-
-
- ;
- ; Menu Definitions
- ;
- Edit: Menu
- (
- Title ("Edit")
- Item ("Delete Word", Keys([F4]))
- Item ("Delete Line", Keys([a-F4]))
- Item ("Begin Block", Keys([F5]))
- Item ("End Block", Keys([F6]))
- Item ("Delete Block", Keys([a-F8]))
- Item ("Move Block", Keys([a-F5]))
- Item ("Copy Block", Keys([a-F6]))
- Item ("Insert On/Off", Keys([Ins]))
- Item ("Set Tabs & Margins", Keys([F9]))
- Item ("Reformat", Keys([F8]))
- Item ("Center", Keys([a-F9]))
- Item ("Reset", Keys([F10]))
- )
-
- Motion: Menu
- (
- Title ("Motion")
- Item ("Find", Keys([F7]))
- Item ("Replace", Keys([a-F7]))
- Item ("Screen Up", Keys([c-PgUp]))
- Item ("Screen Down", Keys([c-PgDn]))
- Item ("Beginning of Text", Keys([c-Home]))
- Item ("End of Text", Keys([c-End]))
- Item ("Reset", Keys([F10]))
- )
-
- File: Menu
- (
- Title ("File")
- Item ("Write File", Keys([F2]))
- Item ("Read File", Keys([a-F2]))
- Item ("Print", Keys([a-F1]))
- Item ("Help On/Off", Keys([F1]))
- Item ("Reset", Keys([F10]))
- Item ("Volkswriter Menu", Keys([a-F10]))
- )
-
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LB) ; Left Button: Edit Menu
- Middle (MB) ; Middle Button: Motion Menu
- LeftRight(MB) ; Left Right Chord: Motion Menu
- Right (RB) ; Right Button: File Menu
- Cursor (ArrowKeys)
- )